home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / ImageWriter--DTP renamer / OldApp.a < prev    next >
Encoding:
Text File  |  1995-04-10  |  1.0 KB  |  47 lines  |  [TEXT/MPS ]

  1. ;------------------------------------------------------------------------------
  2. ;
  3. ;    FILENAME
  4. ;        OldApp.a
  5. ;
  6. ;    DESCRIPTION
  7. ;        Contains the code necessary to dispatch from a routine in one code
  8. ;        module to a code segment in another module or within the same module
  9. ;
  10. ;    COPYRIGHT
  11. ;        Copyright © Apple Computer, Inc. 1992-1994
  12. ;        All rights reserved. 
  13. ;
  14. ;    MODIFICATION HISTORY
  15. ;
  16. ;        07/24/92        Tom Dowdy    New Today
  17. ;        12/20/93        dmh            Sync'd with the shipping 1.0b3 GX driver.
  18. ;         6/23/94        dmh            Added overrides for renaming DTPs.
  19. ;        08/26/94        dmh            Sync'd with the shipping 1.0.1 GX driver.
  20. ;
  21. ;--------------------------------------------------------------------------------
  22.  
  23.                 CASE     OBJ
  24.                 STRING    ASIS
  25.  
  26. SD_JumpTable    PROC    EXPORT
  27.                 dc.l    0
  28.     
  29. ; Compatibility messages
  30.  
  31.                 IMPORT    SD_ConvertPrintRecordTo
  32.                 JMP        SD_ConvertPrintRecordTo
  33.  
  34.                 IMPORT    SD_ConvertPrintRecordFrom
  35.                 JMP        SD_ConvertPrintRecordFrom
  36.  
  37.                 IMPORT    SD_PrintRecordToJob
  38.                 JMP        SD_PrintRecordToJob
  39.  
  40.                 IMPORT    SD_PrValidate
  41.                 JMP        SD_PrValidate
  42.  
  43.                 IMPORT    SD_PrJobInit
  44.                 JMP        SD_PrJobInit
  45.     
  46.     END
  47.